home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro 9',
- 'Host Version': u'9.00'
- }
-
- def Preset_WarpingBrush():
- return {
- 'Mode': App.Constants.WarpingBrushMode.Push,
- 'ParametersLocked': False,
- 'LockMode': App.Constants.WarpingBrushMode.Push,
- 'PushSize': 50,
- 'PushHardness': 0,
- 'PushStrength': 25,
- 'ExpandSize': 32,
- 'ExpandHardness': 0,
- 'ExpandStrength': 100,
- 'ExpandStep': 25,
- 'ContractSize': 32,
- 'ContractHardness': 0,
- 'ContractStrength': 100,
- 'ContractStep': 25,
- 'RightTwirlSize': 32,
- 'RightTwirlHardness': 0,
- 'RightTwirlStrength': 100,
- 'RightTwirlStep': 25,
- 'LeftTwirlSize': 32,
- 'LeftTwirlHardness': 0,
- 'LeftTwirlStrength': 100,
- 'LeftTwirlStep': 25,
- 'NoiseSize': 32,
- 'NoiseHardness': 0,
- 'NoiseStrength': 100,
- 'NoiseStep': 25,
- 'NoiseNoise': 1,
- 'IronOutSize': 32,
- 'IronOutHardness': 0,
- 'IronOutStrength': 100,
- 'UnwarpSize': 32,
- 'UnwarpHardness': 0,
- 'UnwarpStrength': 100,
- 'UnwarpStep': 25,
- 'NoiseSeed': 0,
- 'EdgeMode': App.Constants.WarpingBrushEdgeMode.Fixed,
- 'DraftDrawingQuality': App.Constants.WarpingBrushDraftQuality.High,
- 'FinalApplyQuality': App.Constants.WarpingBrushFinalApplyQuality.Use,
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Default,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- }
-
- def Do(Environment):
- # WarpingBrush
- App.Do( Environment, 'WarpingBrush', Preset_WarpingBrush())
-
-